home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / V11N10.ARJ / DLGDEMO.RC < prev    next >
Text File  |  1992-03-08  |  769b  |  28 lines

  1. /* Resource script for DLGDEMO.C */
  2.  
  3. #include "windows.h"
  4. #include "dlgdemo.h"
  5.  
  6. DlgDemoMenu MENU
  7. BEGIN
  8.     POPUP        "&File"
  9.     BEGIN
  10.         MENUITEM   "&New",          IDM_NEW
  11.         MENUITEM   "&Open...",      IDM_OPEN
  12.         MENUITEM   "&Save",         IDM_SAVE
  13.         MENUITEM   "Save &As...",   IDM_SAVEAS
  14.         MENUITEM   "E&xit",         IDM_EXIT
  15.     END
  16.  
  17.     POPUP        "&Edit"
  18.     BEGIN
  19.         MENUITEM    "&Undo\tAlt+BkSp",     IDM_UNDO   ,GRAYED
  20.         MENUITEM    SEPARATOR
  21.         MENUITEM    "Cu&t\tShift+Del",     IDM_CUT
  22.         MENUITEM    "&Copy\tCtrl+Ins",     IDM_COPY
  23.         MENUITEM    "&Paste\tShift+Ins",   IDM_PASTE  ,GRAYED
  24.         MENUITEM    "&Delete\tDel",        IDM_DELETE  ,GRAYED
  25.     END
  26. END
  27.  
  28.